receivedEvents

fun ChatRoom.receivedEvents(): Flow<ChatEvent>

Flow of ChatEvent instances delivered to a ChatRoom.

This flow is not delivering:

as they are reported using separate flows.

Using this is equivalent to implementing ChatRoomListener.onEventReceived method.

This is a cold flow constructed using callbackFlow API.